google.golang.org/protobuf/internal/impl.extensionTypeDescriptor.Name (method, view implemented interface methods)

65 uses

	google.golang.org/protobuf/internal/impl (current package)
		api_export.go#L77: 		return string(ev.Name())
		codec_field.go#L34: 	fs := si.oneofsByName[od.Name()]
		codec_message.go#L75: 			fs = si.oneofsByName[fd.ContainingOneof().Name()]
		message_reflect.go#L63: 			fs = si.oneofsByName[fd.ContainingOneof().Name()]
		message_reflect.go#L88: 		mi.oneofs[od.Name()] = makeOneofInfo(od, si, mi.Exporter)
		message_reflect.go#L101: 			mi.rangeInfos = append(mi.rangeInfos, mi.oneofs[od.Name()])
		message_reflect.go#L190: 			fs = si.oneofsByName[fd.ContainingOneof().Name()]
		message_reflect_field.go#L487: 		fs := si.oneofsByName[od.Name()]
		message_reflect_gen.go#L114: 	if oi := m.messageInfo().oneofs[od.Name()]; oi != nil && oi.oneofDesc == od {
		message_reflect_gen.go#L234: 	if oi := m.messageInfo().oneofs[od.Name()]; oi != nil && oi.oneofDesc == od {

	google.golang.org/protobuf/internal/descfmt
		stringer.go#L169: 						rs.recs = append(rs.recs, [2]string{"Oneof", string(od.Name())})
		stringer.go#L187: 				ss = append(ss, string(fs.Get(i).Name()))
		stringer.go#L254: 			s = string(v.(protoreflect.Descriptor).Name())

	google.golang.org/protobuf/internal/encoding/defval
		default.go#L141: 			return string(ev.Name()), nil

	google.golang.org/protobuf/internal/encoding/messageset
		messageset.go#L54: 	case fd.Name() != ExtensionName:

	google.golang.org/protobuf/internal/encoding/tag
		tag.go#L173: 	name := string(fd.Name())
		tag.go#L178: 		name = string(fd.Message().Name())

	google.golang.org/protobuf/internal/filedesc
		desc.go#L533: 				s.nameJSON = strs.JSONCamelCase(string(fd.Name()))
		desc.go#L537: 			s.nameText = string(fd.Name())
		desc.go#L539: 				s.nameText = string(fd.Message().Name())
		desc_list.go#L280: 				p.byName[f.Name()] = f

	google.golang.org/protobuf/encoding/protojson
		encode.go#L298: 				e.WriteString(string(desc.Name()))

	google.golang.org/protobuf/encoding/prototext
		encode.go#L242: 			e.WriteLiteral(string(desc.Name()))

	google.golang.org/protobuf/reflect/protodesc
		desc_validate.go#L41: 					return errors.New("enum %q has conflicting non-aliased values on number %d: %q with %q", e.FullName(), v1.Number(), v1.Name(), v2.Name())
		desc_validate.go#L59: 				s := strs.EnumValueName(strs.TrimEnumPrefix(string(v1.Name()), prefix))
		desc_validate.go#L61: 					return errors.New("enum %q using proto3 semantics has conflict: %q with %q", e.FullName(), v1.Name(), v2.Name())
		desc_validate.go#L104: 				return errors.New("message %q has conflicting fields: %q with %q", m.FullName(), f1.Name(), f2.Name())
		desc_validate.go#L123: 				s := strings.Replace(strings.ToLower(string(f1.Name())), "_", "", -1)
		desc_validate.go#L125: 					return errors.New("message %q using proto3 semantics has conflict: %q with %q", m.FullName(), f1.Name(), f2.Name())
		desc_validate.go#L323: 	case !unicode.IsUpper(rune(md.Name()[0])):
		desc_validate.go#L325: 	case fd.Name() != protoreflect.Name(strings.ToLower(string(md.Name()))):
		desc_validate.go#L341: 	case md.Name() != protoreflect.Name(strs.MapEntryName(string(fd.Name()))):
		desc_validate.go#L355: 	case kf.Name() != genid.MapEntry_Key_field_name || kf.Number() != genid.MapEntry_Key_field_number || kf.Cardinality() != protoreflect.Optional || kf.ContainingOneof() != nil || kf.HasDefault():
		desc_validate.go#L357: 	case vf.Name() != genid.MapEntry_Value_field_name || vf.Number() != genid.MapEntry_Value_field_number || vf.Cardinality() != protoreflect.Optional || vf.ContainingOneof() != nil || vf.HasDefault():
		proto.go#L83: 		Name:    proto.String(string(message.Name())),
		proto.go#L126: 		Name:    proto.String(string(field.Name())),
		proto.go#L148: 			p.JsonName = proto.String(strs.JSONCamelCase(string(field.Name())))
		proto.go#L159: 			def = string(field.DefaultEnumValue().Name()) // occurs for unresolved enum values
		proto.go#L175: 		Name:    proto.String(string(oneof.Name())),
		proto.go#L184: 		Name:    proto.String(string(enum.Name())),
		proto.go#L207: 		Name:    proto.String(string(value.Name())),
		proto.go#L217: 		Name:    proto.String(string(service.Name())),
		proto.go#L230: 		Name:       proto.String(string(method.Name())),

	google.golang.org/protobuf/reflect/protoreflect
		type.go#L56: 	Name() Name // e.g., "Any"

	github.com/golang/protobuf/jsonpb
		decode.go#L321: 		name := string(fd.Name())
		decode.go#L323: 			name = string(fd.Message().Name())
		encode.go#L405: 		name := string(fd.Name())
		encode.go#L407: 			name = string(fd.Message().Name())
		encode.go#L530: 			w.write(`"` + string(vd.Name()) + `"`)

	github.com/golang/protobuf/proto
		registry.go#L138: 					m[string(ev.Name())] = int32(ev.Number())
		text_decode.go#L123: 			if gd != nil && gd.Kind() == protoreflect.GroupKind && gd.Message().Name() == name {
		text_decode.go#L126: 		case fd.Kind() == protoreflect.GroupKind && fd.Message().Name() != name:
		text_decode.go#L142: 			return p.errorf("field '%s' would overwrite already parsed oneof '%s'", name, od.Name())
		text_decode.go#L145: 			return p.errorf("non-repeated field %q was repeated", fd.Name())
		text_decode.go#L217: 			return p.errorf("Any message unpacked multiple times, or %q already set", urlFD.Name())
		text_decode.go#L220: 			return p.errorf("Any message unpacked multiple times, or %q already set", valFD.Name())
		text_encode.go#L183: 		w.buf = append(w.buf, fd.Name()...)
		text_encode.go#L187: 		w.buf = append(w.buf, fd.Message().Name()...)
		text_encode.go#L396: 			fmt.Fprint(w, ev.Name())